home *** CD-ROM | disk | FTP | other *** search
ASP.NET Web Form | 2002-03-17 | 2.8 KB | 49 lines |
- <%@ Page Language="vb" AutoEventWireup="false" Codebehind="WebControlsForm.aspx.vb" Inherits="FirstWebForms.WebControlsForm" %>
- <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
- <HTML>
- <HEAD>
- <title>WebControlsForm</title>
- <meta content="Microsoft Visual Studio.NET 7.0" name="GENERATOR">
- <meta content="Visual Basic 7.0" name="CODE_LANGUAGE">
- <meta content="JavaScript" name="vs_defaultClientScript">
- <meta content="http://schemas.microsoft.com/intellisense/ie5" name="vs_targetSchema">
- </HEAD>
- <body>
- <form id="Form1" method="post" runat="server">
- <H1>Web Forms Controls Demo</H1>
- <P>This form demonstrates the main features of all basic Web Forms controls.</P>
- <P> </P>
- <P><asp:literal id="Literal1" runat="server" Text="Literal control"></asp:literal>
- <asp:label id="Label1" runat="server" Font-Bold="True" Font-Italic="True" Font-Size="Large">Label control</asp:label>
- <asp:panel id="Panel1" runat="server" Width="160px" Height="47px">Panel</asp:panel></P>
- <P><asp:placeholder id="PlaceHolder1" runat="server"></asp:placeholder></P>
- <P><asp:textbox id="TextBox1" runat="server">SingleLine textbox</asp:textbox>
- <asp:textbox id="TextBox2" runat="server" TextMode="MultiLine" Rows="3" Width="251px">Multiline Textbox control</asp:textbox></P>
- <P><asp:checkbox id="CheckBox1" runat="server" Text="CheckBox control"></asp:checkbox>
- <asp:radiobutton id="RadioButton1" runat="server" Text="RadioButton control"></asp:radiobutton></P>
- <P><asp:hyperlink id="HyperLink1" runat="server">HyperLink control</asp:hyperlink>
- <asp:image id="Image1" runat="server" ImageUrl="file:///E:\Inetpub\wwwroot\FirstWebForms\logo.gif"></asp:image>
- <= Image control</P>
- <P><asp:button id="Button1" runat="server" Text="Button control "></asp:button>
- <asp:LinkButton id="LinkButton1" runat="server">LinkButton control</asp:LinkButton>
- <asp:ImageButton id="ImageButton1" runat="server" BorderStyle="Ridge" ImageUrl="file:///E:\Inetpub\wwwroot\print.gif"></asp:ImageButton> <=
- ImageButton control</P>
- <P>
- <asp:Table id="Table1" runat="server" BorderWidth="1px" GridLines="Both">
- <asp:TableRow>
- <asp:TableCell Text="Table control"></asp:TableCell>
- <asp:TableCell></asp:TableCell>
- <asp:TableCell></asp:TableCell>
- <asp:TableCell></asp:TableCell>
- </asp:TableRow>
- <asp:TableRow>
- <asp:TableCell></asp:TableCell>
- <asp:TableCell></asp:TableCell>
- <asp:TableCell></asp:TableCell>
- <asp:TableCell></asp:TableCell>
- </asp:TableRow>
- </asp:Table></P>
- </form>
- </body>
- </HTML>
-